home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #6 / CD 6 (Black) - 2001.iso / K-CS.dcr / 00288.ls < prev    next >
Encoding:
Text File  |  2001-02-20  |  829 b   |  31 lines

  1. global IconNummer, HPos, BlinkObjekt, CalcTimer, CalcStarted
  2.  
  3. on new me
  4.   set CalcTimer to 0
  5.   set CalcStared to 0
  6.   set BlinkObjekt to new(script "Blink")
  7.   set the visible of sprite 60 to 1
  8.   set the locH of sprite 60 to ((HPos + 16) / 32 * 32) - 26
  9.   set the visible of sprite 60 to 0
  10.   set the visible of sprite 64 to 0
  11.   set the visible of sprite 65 to 0
  12.   set the visible of sprite 63 to 1
  13.   set the locH of sprite 63 to ((HPos + 16) / 32 * 32) - 4
  14.   set the locH of sprite 64 to ((HPos + 16) / 32 * 32) - 46
  15.   set the locH of sprite 65 to ((HPos + 16) / 32 * 32) - 47
  16. end
  17.  
  18. on prepareFrame
  19.   checkBlink(BlinkObjekt)
  20.   if CalcStarted then
  21.     if CalcTimer > (the timer + (30 * 60)) then
  22.       set CalcStarted to 0
  23.       baCloseWindow(baFindWindow(EMPTY, "Lommeregner"))
  24.     end if
  25.   end if
  26. end
  27.  
  28. on exitFrame
  29.   go(#loop)
  30. end
  31.